Statement Blocks

A statement block is a group of statements that begin with the keyword BEGIN, or the symbol "{", and end with the keyword END, or the symbol "}". Two examples appear below. See BEGIN and END for more extensive examples of statement blocks.

Statement blocks

BEGIN {

Statement 1 Statement 1

Statement 2 Statement 2

Statement 3 Statement 3

... ...

Statement n Statement n

END }